From: Juanma Barranquero Date: Wed, 26 Sep 2007 00:07:37 +0000 (+0000) Subject: (calc-flush-caches): Use `mapc' rather than `mapcar'. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~26781 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4d2a9fe4a44aa3c718b6584910e51f30ad241002;p=emacs.git (calc-flush-caches): Use `mapc' rather than `mapcar'. --- diff --git a/lisp/calc/calc-stuff.el b/lisp/calc/calc-stuff.el index a1f50816519..5dcc5365d10 100644 --- a/lisp/calc/calc-stuff.el +++ b/lisp/calc/calc-stuff.el @@ -191,7 +191,7 @@ With a prefix, push that prefix as a number onto the stack." math-eval-rules-cache-tag t math-format-date-cache nil math-holidays-cache-tag t) - (mapcar (function (lambda (x) (set x -100))) math-cache-list) + (mapc (function (lambda (x) (set x -100))) math-cache-list) (unless inhibit-msg (message "All internal calculator caches have been reset"))))